home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / com_and4.zip / OVERLAY.DOC < prev    next >
Text File  |  1990-03-22  |  2KB  |  42 lines

  1. -------------------------------------------------------------------------------
  2. 900322                COM-AND Script Overlay            Page  1
  3. -------------------------------------------------------------------------------
  4. Included in this release is a file OVERLAY.ARC.  It contains:
  5. -------------------------------------------------------------------------------
  6.  
  7.  
  8.     OVERLAY.ASM
  9.  
  10.        Assembler source file.  Compile with "MASM OVERLAY;".  This file
  11.        defines two overlay routines, one to display a string through
  12.        BIOS, and a second to return the segment address.
  13.  
  14.     OVERLAY.OBJ
  15.  
  16.        MASM output from compilation of OVERLAY.ASM.  Link with the
  17.        command "LINK OVERLAY;" to create EXE file.
  18.  
  19.     OVERLAY.EXE
  20.  
  21.        LINK output.  Not directly executable!  Properly, would be renamed
  22.        to OVERLAY.OVL to prohibit running from the DOS prompt.  Convert
  23.        to COM format with the command "EXE2BIN OVERLAY.EXE OVERLAY.COM".
  24.  
  25.     OVERLAY.COM
  26.  
  27.        EXE2BIN output.  Not directly executable!  Would be renamed as
  28.        above to prohibit running from the DOS prompt.
  29.  
  30.     OVERLAY.CMD
  31.  
  32.        COM-AND script to use OVERLAY.EXE or OVERLAY.COM.  This script,
  33.        when invoked, loads the OVERLAY.EXE (or COM if you change it),
  34.        and then invokes the two routines.
  35.  
  36.     --------------------------------------------------------------------
  37.     Albeit not a very interesting function proper, OVERLAY demonstrates
  38.     the coding and use of machine language subroutines to COM-AND scripts.
  39.     Overlays may be coded to interface DOS and BIOS interrupts, or more
  40.     sophisticated modules such as the demonstration TALKER.ARC.  Enjoy!
  41.  
  42.